home *** CD-ROM | disk | FTP | other *** search
/ MacTech 1 to 12 / MacTech-vol-1-12.toast / Source / MacTech® Magazine / Volume 05 - 1989 / 05.06 Jun 89 / Supe SubCode / TrapHook.h < prev    next >
Encoding:
C/C++ Source or Header  |  1988-10-08  |  226 b   |  13 lines  |  [TEXT/MPS ]

  1. #define SUPER        0x4000
  2. #define SUB            0x2000
  3. #define REGULAR    0x1FFF
  4.  
  5. typedef 
  6.     struct TrapHookRecord
  7.     {    long    SvRTS;
  8.         long    FuncAddress;
  9.         long    TrapAddress;
  10.         long    HookCallLevel;
  11.         long    Code;
  12.     } TrapHookRecord, *TrapHookPointer;
  13.